home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / chap04 / howto03 / ccfmgr22.dpr next >
Encoding:
Text File  |  1995-10-27  |  537 b   |  21 lines

  1. program Ccfmgr22;
  2.  
  3. uses
  4.   Forms,
  5.   Ufmgr22 in 'UFMGR22.PAS' {CCFileMgrForm},
  6.   Drwsutl4 in 'DRWSUTL4.PAS',
  7.   Drwsutl1 in 'DRWSUTL1.PAS',
  8.   Cfmpfun in 'CFMPFUN.PAS' {CCFMPropsForm},
  9.   Dddfunit in 'DDDFUNIT.PAS' {DestDDForm},
  10.   Ccprnmgr in 'CCPRNMGR.PAS' {CCPrintForm};
  11.  
  12. {$R *.RES}
  13.  
  14. begin
  15.   Application.Title := 'CC File Center';
  16.   Application.CreateForm(TCCFileMgrForm, CCFileMgrForm);
  17.   Application.CreateForm(TCCFMPropsForm, CCFMPropsForm);
  18.   Application.CreateForm(TDestDDForm, DestDDForm);
  19.   Application.Run;
  20. end.
  21.